﻿
@charset "utf-8";
/*home slider*/

.pic-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /*animation*/
    animation: slideShow 50s linear infinite 0s;
    -o-animation: slideShow 50s linear infinite 0s;
    -moz-animation: slideShow 50s linear infinite 0s;
    -webkit-animation: slideShow 50s linear infinite 0s;
}

figurecaption {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
}

.pic {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    transform-origin: center center;
}

    .pic:nth-of-type(1) {
        opacity: 1;
    }

.pic-1 {
}

.pic-2 {
    animation-delay: 10s;
    -o-animation-delay: 10s;
    -moz--animation-delay: 10s;
    -webkit-animation-delay: 10s;
}

.pic-3 {
    animation-delay: 20s;
    -o-animation-delay: 20s;
    -moz--animation-delay: 20s;
    -webkit-animation-delay: 20s;
}

.pic-4 {
    animation-delay: 30s;
    -o-animation-delay: 30s;
    -moz--animation-delay: 30s;
    -webkit-animation-delay: 30s;
}

.pic-5 {
    animation-delay: 40s;
    -o-animation-delay: 40s;
    -moz--animation-delay: 40s;
    -webkit-animation-delay: 40s;
}

/* keyframes*/

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
        -ms-transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        transform: scale(1.2);
        -ms-transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(1);
        -ms-transformm: scale(1);
    }
}

@-o-keyframes slideShow {
    0% {
        opacity: 0;
        -o-transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -o-transform: scale(1.2);
    }

    100% {
        opacity: 0;
        -o-transformm: scale(1);
    }
}

@-moz-keyframes slideShow {
    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -moz-transform: scale(1.2);
    }

    100% {
        opacity: 0;
        -moz-transformm: scale(1);
    }
}

@-webkit-keyframes slideShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -webkit-transform: scale(1.2);
    }

    100% {
        opacity: 0;
        -webkit-transformm: scale(1);
    }
}
/*home slider*/

